home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 626-637 / disk_636 / smallpalette / smallpalette.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  366b  |  21 lines

  1. /*  SmallPalette
  2.  *  by Stefan Zeiger of ! Wizard Works !
  3.  *  Nov-1991
  4.  *  Public Domain.
  5.  */
  6.  
  7. #include <intuition/intuitionbase.h>
  8. #include <proto/req.h>
  9. #include <proto/exec.h>
  10.  
  11. struct ReqLib *ReqBase;
  12.  
  13. void _main(void)
  14. {
  15.   if((ReqBase=(struct ReqLib *)OpenLibrary("req.library",0L)))
  16.   {
  17.     ColorRequester(0L);
  18.     CloseLibrary((struct Library *)ReqBase);
  19.   }
  20. }
  21.